home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Concept 6
/
CD Concept 06.iso
/
mac
/
UTILITAIRE
/
Little Smalltalk v3.1.4
/
C Source
/
Headers
/
CGraphicsPane.h
next >
Wrap
Text File
|
1994-10-16
|
666b
|
21 lines
//=============================================================================
// Little Smalltalk, version 3
// Written by Tim Budd, Oregon State University, July 1988
//
// Symantec Think Class Library interface code ⌐Julian Barkway, August 1994
//
// CGraphicsPane.h
// ---------------
// This class implements a graphics pane as a sub-class of CPicture.
//=============================================================================
#ifndef _H_CGraphicsPane
#define _H_CGraphicsPane
#include "CPicture.h"
struct CGraphicsPane : CPicture {
void IGraphicsPane (CView *encl, CBureaucrat *super,
SizingOption hSizing, SizingOption vSizing);
};
#endif